home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2007 June / PC Advisor 2007 June.iso / FULL / OPENOFFICE / openoffice.exe / openofficeorg4.cab / HelloWorld.py < prev    next >
Text File  |  2006-11-30  |  480b  |  14 lines

  1. # HelloWorld python script for the scripting framework
  2.  
  3. def HelloWorldPython( ):
  4.     """Prints the string 'Hello World(in Python)' into the current document"""
  5. #get the doc from the scripting context which is made available to all scripts
  6.     model = XSCRIPTCONTEXT.getDocument()
  7. #get the XText interface
  8.     text = model.Text
  9. #create an XTextRange at the end of the document
  10.     tRange = text.End
  11. #and set the string
  12.     tRange.String = "Hello World (in Python)"
  13.     return None
  14.